Stored Procedures [dbo].[BAEFindMeStatisticDelete]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@StatisticIDint4
SQL Script
create procedure [dbo].[BAEFindMeStatisticDelete] @StatisticID as
int
AS
    DELETE
    FROM FindMeStatistic
    WHERE StatisticID = @StatisticID;

GO
Uses